home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2003-11-19 | 1.3 KB | 51 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH 1"="System\System Restore"
- "NAME"="System Restore Totally Disabled"
- "WARNING"="1"
- "VERSION"="1.01"
- "OSVERSION"="0000011"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Totally disable System Restore"
- "DESCRIPTION 1"="Although you can disable System Restore, the service itself (the EXE file) is still running."
- "DESCRIPTION 2"="Some programs can still use it and some of them do so. That way, you still have checkpoints created which use hard disk space."
- "DESCRIPTION 3"="If you really want to STOP System Restore, enable this setting."
- "DESCRIPTION 4"="WARNING: Some programs might react very strange when they can no longer access the system restore service. Please be careful."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=""
-
-
-
- sP1="HKLM\SYSTEM\CurrentControlSet\Services\SRService\Start"
-
- Sub Plugin_Initialize
- i=RegReadValue(sP1)
- if i=4 then SetUIElement 1,true
- End Sub
-
-
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue(sP1,4,2)
- else
- Call RegWriteValue(sP1,2,2)
- end if
-
-
- Restart
- End Sub
-
-
-
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-